/* GLOBAL */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Noto Sans Devanagari', sans-serif;
  color: #1d3320;
  background-color: #F9F8F6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 40px 0;
  animation: slideInUp 0.6s ease-out;
}

/* Enhanced Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* TOP BAR */
.top-bar {
  background-color: #2C666E;
  color: #F0FDEE;
  font-size: 13px;
  padding: 6px 16px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* HEADER */
.main-header {
  background: linear-gradient(90deg, #2C666E, #F0FDEE);
  color: #2C666E;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #2C666E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  color: #F0FDEE;
}

.logo-text h1 {
  font-size: 20px;
  line-height: 1.2;
  color: #F0FDEE;
}

.logo-text p {
  font-size: 13px;
  opacity: 0.9;
  color: #F0FDEE;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* NAV */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.main-nav a {
  position: relative;
  padding-bottom: 2px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* LANGUAGE SWITCH */
.lang-switch {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-btn {
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lang-btn.active {
  background-color: #F0EDEE;
  color: #2C666E;
  border-color: #F0EDEE;
  box-shadow: 0 6px 16px rgba(240, 237, 238, 0.3);
  transform: scale(1.05);
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* HERO */
.hero {
  background-color: #000;
}

.hero-slider {
  position: relative;
  max-height: 480px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 40px;
  text-align: center;
}

.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.4;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot:hover {
  transform: scale(1.3);
  opacity: 0.8;
}

.dot.active {
  opacity: 1;
}

/* HERO INTRO BAND */
.hero-intro {
  background: linear-gradient(90deg, #2C666E, #F0FDEE);
  color: #2C666E;
  text-align: center;
  padding: 40px 0 50px;
}

.hero-intro-inner h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero-intro-top {
  letter-spacing: 1px;
  font-size: 16px;
}

.hero-intro-sub {
  margin-bottom: 16px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background-color: #2C666E;
  color: #fff;
}

.btn-primary:hover {
  background-color: #1f4a52;
  box-shadow: 0 8px 20px rgba(44, 102, 110, 0.3);
  transform: translateY(-2px);
}

.btn-light {
  background-color: #F0FDEE;
  color: #2C666E;
}

.btn-light:hover {
  box-shadow: 0 8px 20px rgba(44, 102, 110, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid #2C666E;
  background: transparent;
  color: #2C666E;
}

.btn-outline:hover {
  background-color: rgba(44, 102, 110, 0.1);
  transform: translateY(-2px);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* GRID LAYOUTS */
.grid-2-3 {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 24px;
}

.grid-main-side {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 24px;
}

/* CARDS */
.card {
  background-color: #FDFCF9;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  box-shadow: 0 12px 32px rgba(44, 102, 110, 0.15);
  transform: translateY(-4px);
}

.section-title {
  color: #2C666E;
  font-size: 24px;
  margin-bottom: 18px;
}

/* GALLERY */
.gallery-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.gallery-card .section-title {
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}

.gallery-viewport {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 16px;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(44, 102, 110, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-viewport:hover {
  box-shadow: 0 16px 40px rgba(44, 102, 110, 0.25);
  transform: translateY(-4px);
}

.gallery-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background-color: #f0f0f0;
}

/* Fade animation for images */
.gallery-slide img.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.gallery-caption {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  z-index: 10;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(44, 102, 110, 0.8);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.gallery-nav:hover {
  background-color: #2C666E;
  box-shadow: 0 6px 20px rgba(44, 102, 110, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev { left: 16px; }
.gallery-nav.next { right: 16px; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 0;
}

.gallery-dots .dot {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.gallery-dots .dot:hover {
  opacity: 0.8;
}

.card-footer-center {
  text-align: center;
  margin-top: 14px;
}

.card-footer-left {
  text-align: left;
  margin-top: 14px;
}

/* COMMITTEE */
.member-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  margin-bottom: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.member-green { background-color: #e4f4e7; }
.member-lightgreen { background-color: #e9f7ef; }
.member-orange { background-color: #ffe9d5; }

.member-card:hover {
  box-shadow: 0 6px 20px rgba(44, 102, 110, 0.1);
  transform: translateX(4px);
}

.member-avatar img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.member-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.member-info p {
  font-size: 13px;
}

.badge {
  display: inline-block;
  background-color: #2C666E;
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  padding: 3px 8px;
  margin-bottom: 4px;
}

/* SERVICES */
.section-header {
  margin-bottom: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.service-card {
  background-color: #FDFCF9;
  border-radius: 10px;
  border: 1px solid #E8E6E1;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.service-card:hover {
  box-shadow: 0 8px 20px rgba(44, 102, 110, 0.12);
  transform: translateY(-3px);
}

.service-icon {
  font-size: 24px;
}

.service-card h4 {
  font-size: 15px;
  margin-bottom: 3px;
}

.service-card p {
  font-size: 13px;
  color: #566;
}

/* BLOGS */
.section-blogs {
  margin-top: 30px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.blog-card {
  background-color: #FDFCF9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
  box-shadow: 0 12px 32px rgba(44, 102, 110, 0.2);
  transform: translateY(-8px);
}

.blog-card img {
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-content {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blog-tag {
  display: inline-block;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
}

.blog-tag-orange {
  background-color: #ffe8d5;
  color: #b45000;
}

.blog-tag-green {
  background-color: #e2f5e8;
  color: #11602a;
}

.blog-date {
  font-size: 11px;
  color: #788;
}

.blog-content h4 {
  font-size: 15px;
}

.blog-content p {
  font-size: 13px;
}

.blog-content .btn {
  margin-top: 6px;
  align-self: flex-start;
}

/* SIDEBAR */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-card {
  padding: 16px 18px 18px;
}

.sidebar-title {
  font-size: 18px;
  color: #125b22;
  margin-bottom: 10px;
}

.sidebar-body {
  font-size: 13px;
}

.notice-item {
  margin-bottom: 4px;
}

/* PROJECTS */
.section-projects {
  background-color: #fdfdfd;
}

.section-projects .section-title {
  margin-bottom: 6px;
}

/* FOOTER */
.site-footer {
  background: linear-gradient(90deg, #2C666E, #F0FDEE);
  color: #1a1a1a;
  padding-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-bottom: 26px;
}

.site-footer h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.site-footer p,
.site-footer li {
  font-size: 13px;
  color: #1a1a1a;
}

.site-footer ul {
  list-style: none;
  margin-top: 6px;
}

.site-footer li + li {
  margin-top: 3px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(44,102,110,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #2C666E;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
  background-color: #2C666E;
  color: #F0EDEE;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 16px rgba(44, 102, 110, 0.3);
  border-color: #2C666E;
}

.footer-bottom {
  border-top: 1px solid rgba(44,102,110,0.2);
  text-align: center;
  padding: 10px 16px 12px;
  font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .grid-2-3,
  .grid-main-side,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-caption {
    font-size: 30px;
  }

  .hero-image {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 58px;
    right: 0;
    left: 0;
    background: linear-gradient(90deg, #125b22, #e59b2d);
    padding: 10px 16px 14px;
    display: none;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .main-nav.open {
    display: block;
  }

  .menu-toggle {
    display: block;
  }

  .hero-caption {
    font-size: 24px;
    bottom: 30px;
  }

  .hero-intro-inner h2 {
    font-size: 30px;
  }

  .top-bar {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-image {
    height: 300px;
  }

  .logo-text h1 {
    font-size: 17px;
  }

  .logo-text p {
    font-size: 11px;
  }

  .hero-intro {
    padding: 28px 0 34px;
  }

  .button {
    font-size: 13px;
  }
}
/* ------- visible makeover ------- */
.modern-header {padding:14px 20px;}
.nav-pill { padding:6px 14px;border-radius:50px;background:rgba(240,237,238,.3);}
.nav-pill:hover{background:#F0FDEE;color:#2C666E;}

.hero-overlay{position:relative;}
.hero-overlay::after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.45);}
.hero-text-center{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:#fff;text-align:center;}

.btn-white-round{background:#F0FDEE;color:#2C666E;border-radius:50px;padding:12px 26px;font-weight:600;}

.committee-horizontal{display:flex;gap:20px;flex-wrap:wrap;justify-content:center;}
.new-shadow{box-shadow:0 6px 16px rgba(0,0,0,0.08)!important;padding:12px;border-radius:14px;}

.gallery-wide{display:flex;align-items:center;justify-content:center;gap:14px;}
.round-nav{width:42px;height:42px;border-radius:50%;background:#2C666E;color:#fff;border:none;}
.gallery-big{max-width:100%;border-radius:10px;}
.alt-bg{background:#f1f7f0;padding:40px 0;}

.section-title-center{text-align:center;margin-bottom:20px;font-size:28px;}

/* --- SERVICE PAGE --- */

.service-tabs{
  text-align:center;
  margin-top:20px;
}
.service-tabs .tab{
  display:inline-block;
  margin:4px;
  padding:8px 18px;
  border-radius:6px;
  background:#eee;
  cursor:pointer;
}
.service-tabs .active{
  background:#2C666E;
  color:#fff;
}

.service-grid-3{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.service-box{
  background:white;
  padding:20px;
  border-radius:10px;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
}

.process-grid{
  display:flex;
  justify-content:space-around;
  flex-wrap:wrap;
  gap:10px;
  margin-top:30px;
}

.process-step{
  background:white;
  width:200px;
  padding:25px;
  border-radius:10px;
  text-align:center;
}
.step-num{
  background:#2C666E;
  color:white;
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 10px;
}
.contact-service{
  background:white;
  padding:20px;
  width:100%;
  border-radius:10px;
}

/* ========== SCHEME PAGE ========== */

.scheme-tabs {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.scheme-tabs .tab {
  padding: 8px 18px;
  border: 1px solid #2C666E;
  border-radius: 6px;
  color: #2C666E;
  font-size: 15px;
  background: #fff;
  text-decoration: none;
  transition: 0.2s;
}

.scheme-tabs .tab.active,
.scheme-tabs .tab:hover {
  background: #2C666E;
  color: #fff;
}


/* Section Headings */
.section-subtitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2C666E;
}

.badge-green {
  background: #e6f5f7;
  padding: 3px 8px;
  color: #2C666E;
  font-size: 13px;
  border-radius: 6px;
}


/* Main Scheme Card */
.scheme-card-full {
  background: #fff;
  border: 1px solid #e0e6e0;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.scheme-card-full h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #145214;
}

.scheme-list {
  margin-left: 20px;
  margin-top: 10px;
}

.scheme-list li {
  list-style: disc;
}


/* Detail Box */
.scheme-box {
  background: #f7fff7;
  border-left: 4px solid #1c5e1c;
  padding: 10px 15px;
  border-radius: 6px;
  margin-top: 15px;
}


/* Empty Info */
.empty-info {
  color: #777;
  font-size: 15px;
  margin: 10px 0 30px;
}


/* HOW TO APPLY */
.apply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 20px;
}

.apply-box {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 20px;
}

.apply-box h3 {
  margin-bottom: 12px;
  font-size: 18px;
  color: #155915;
}

/* ========== BLOG PAGE ========== */
.blog-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap:25px;
}

.blog-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:10px;
  overflow:hidden;
  transition:0.2s;
}

.blog-card:hover{
  transform:translateY(-4px);
  box-shadow:0 4px 14px rgba(0,0,0,0.1);
}

.blog-card img{
  width:100%;
  height:230px;
  object-fit:cover;
}

.blog-content{
  padding:18px;
}

.blog-content h3{
  font-size:18px;
  margin-bottom:5px;
  color:#144914;
}

.blog-meta{
  font-size:14px;
  color:#555;
  display:flex;
  justify-content:space-between;
  margin:10px 0;
}

.blog-tag{
  padding:4px 10px;
  font-size:13px;
  border-radius:5px;
  margin-bottom:8px;
  display:inline-block;
}

.blog-tag-orange{ background:#fde9d6; color:#d36712; }
.blog-tag-green{ background:#e4f8e4; color:#196a19; }
.blog-tag-blue{ background:#dde9ff; color:#0945a2; }

/* ---------- GALLERY Page ---------- */
.gallery-filter{
  display:flex;
  gap:8px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:20px;
}

.filter-btn{
  padding:8px 14px;
  border:1px solid #145a14;
  border-radius:8px;
  background:#fff;
  cursor:pointer;
  font-size:14px;
  color:#145a14;
}

.filter-btn.active,
.filter-btn:hover{
  background:#145a14;
  color:#fff;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:25px;
}

.gallery-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:10px;
  overflow:hidden;
  transition:0.25s;
}

.gallery-card:hover{
  transform:translateY(-4px);
  box-shadow:0 6px 12px rgba(0,0,0,0.12);
}

.gallery-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.gallery-content{
  padding:15px;
}

.gallery-content h3{
  font-size:16px;
  margin-bottom:4px;
  color:#184b18;
}

.gallery-meta{
  display:flex;
  justify-content:space-between;
  font-size:13px;
  margin-top:8px;
  color:#777;
}

.gallery-tag{
  display:inline-block;
  padding:3px 8px;
  font-size:13px;
  border-radius:5px;
  margin-bottom:5px;
}

.gallery-tag-orange{ background:#fde9d9; color:#9b4c06; }
.gallery-tag-green{ background:#e6f7e4; color:#1e601c; }

/* CONTACT PAGE */
.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(460px,1fr));
  gap:30px;
}

.contact-card{
  background:#fff;
  border:1px solid #dde5dd;
  padding:25px;
  border-radius:15px;
}

.contact-card h3{
  color:#155c15;
  margin-bottom:15px;
}

.contact-card p{
  font-size:15px;
  color:#333;
  margin-bottom:12px;
}

.badge{
  background:#ffd9b4;
  color:#a05000;
  display:inline-block;
  padding:6px 12px;
  border-radius:6px;
  font-weight:600;
}

.map-footer{
  padding:8px 0 0;
}

.link-map{
  color:#145a14;
  font-weight:600;
}

.contact-social{
  text-align:left;
  max-width:500px;
}

.social-links a{
  background:#fff;
  border:1px solid #dcecd8;
  padding:8px 14px;
  margin-right:10px;
  border-radius:8px;
  display:inline-block;
}

/* PAGE HERO */
.page-hero {
  background: #f8f9f5;
  padding: 70px 0;
  border-bottom: 1px solid #e3e3e3;
}

.page-hero h1 {
  color: #25612b;
  font-size: 38px;
  margin-bottom: 10px;
}

.page-hero p {
  color: #444;
  font-size: 18px;
}



/* GRID BASIC */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* ABOUT CARD */
.about-card {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.about-card h3 {
  color: #1b5e20;
  font-size: 22px;
  margin-bottom: 18px;
}

.about-card p {
  padding: 4px 0;
  font-size: 17px;
  color: #333;
}

.about-card strong {
  font-weight: 600;
  color: #1b5e20;
}



/* WIDE SECTION */
.alt-bg {
  background: #fafcf7;
  padding-top: 30px;
}

.about-wide-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

.about-wide-card h3 {
  color: #1b5e20;
  margin-bottom: 10px;
}

.about-wide-card ul li {
  padding: 4px 0;
  font-size: 16px;
  color: #222;
}



/* MEMBER SECTION */
.member-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  margin-top: 30px;
}

.member-card {
  background: #fdfefe;
  padding: 20px 15px;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  text-align: center;
}

.member-card img {
  width: 110px;
  height: 110px;
  border-radius: 60px;
  border: 4px solid #fff;
  object-fit: cover;
}

.member-card h4 {
  margin-top: 15px;
  font-size: 19px;
  color: #1c5a24;
}

.member-card span {
  font-size: 16px;
  display: block;
  color: #25612b;
  font-weight: 600;
}



/* RESPONSIVE */
@media(max-width: 900px){
  .about-grid{
      grid-template-columns: 1fr;
  }
  .member-grid{
      grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 600px){
  .member-grid{
      grid-template-columns: 1fr;
  }
}

/* HORIZONTAL MEMBER CARDS */
.member-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(380px,1fr));
  gap:25px;
  margin-top:35px;
}

.member-card{
  background:#F7FBF6;
  border:1px solid #E0E8E0;
  display:flex;
  align-items:center;
  padding:20px 25px;
  border-radius:18px;
  box-shadow:0 3px 6px rgba(0,0,0,0.05);
  gap:20px;
}


/* LEFT PROFILE IMAGE */
.member-card img{
  width: 120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  border:4px solid #fff;
  box-shadow:0 3px 6px rgba(0,0,0,0.13);
}


/* MIDDLE NAME TEXT */
.member-info{
  flex:1;
}

.member-info h4{
  font-size:20px;
  font-weight:600;
  color:#0A4D1F;
  margin-bottom:4px;
  line-height:1.3;
}

.member-info span{
  font-size:16px;
  font-weight:600;
  color:#0A4D1F;
}


/* RIGHT TAG + PHONE COLUMN */
.member-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:8px;
}


/* BIG GREEN TAG */
.member-tag{
  background:#0e5f25;
  padding:15px 32px;
  border-radius:45px;
  font-size:17px;
  font-weight:600;
  color:white;
}


/* phone */
.member-phone{
  font-size:15px;
  color:#555;
}


/* RESPONSIVE */
@media(max-width:550px){
  .member-card{
    flex-direction:column;
    text-align:center;
  }
  .member-right{
    align-items:center;
  }
}

.official-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:35px;
  margin-top:40px;
}

.official-card{
  background:#f6fdf6;
  border-radius:12px;
  padding:40px 20px;
  text-align:center;
  border:1px solid rgba(0,0,0,0.08);
  transition:0.3s;
}

.official-card:hover{
  transform:translateY(-8px);
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.official-card img{
  width:140px;
  height:140px;
  border-radius:50%;
  border:6px solid white;
  object-fit:cover;
  margin-bottom:20px;
}

.official-card h3{
  font-size:22px;
  margin:5px 0;
  color:#144a27;
}

.role{
  display:inline-block;
  padding:6px 18px;
  background:#144a27;
  color:#fff;
  border-radius:20px;
  margin:10px 0;
  font-size:18px;
}

.phone,.term{
  font-size:18px;
  color:#0d4020;
  margin-top:8px;
}

@media(max-width:900px){
  .official-grid{
    grid-template-columns: repeat(2,1fr);
  }
}
@media(max-width:600px){
  .official-grid{
    grid-template-columns:1fr;
  }
}

/* final code of about */
/* officials title */
#officials h2 {
  color: #115311;
  margin-bottom: 40px;
  font-size: 32px;
}

/* grid layout */
.official-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 35px;
  justify-content: center;
}

/* card */
.official-card {
  background: #f8fff8;
  border-radius: 15px;
  padding: 40px 25px;
  text-align: center;
  border: 1px solid #e7f3e7;
  transition: all .35s ease;
  min-height: 380px;
}

/* hover animation */
.official-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* square image */
.official-card img {
  width: 170px;
  height: 180px;
  display: block;
  margin: 0 auto 15px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #bbb;
  transition: 0.4s;
}

/* image hover zoom */
.official-card:hover img {
  transform: scale(1.05);
}

/* names */
.official-card h3 {
  color: #0f4d0f;
  font-size: 20px;
  margin: 12px 0 10px;
  line-height: 1.5;
}

/* role */
.official-card .role {
  background: #0f4d0f;
  padding: 7px 18px;
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
  font-size: 15px;
}

/* phone & term */
.phone,
.term {
  color: #444;
  margin: 4px 0;
  font-size: 15px;
}

#employees h2 {
  text-align:center;
  color:#0f4d0f;
  margin-bottom:40px;
}

/* Ensure card height fits */
.gallery-card {
  height: 100%;
}

/* viewport area */
.gallery-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  width: 100%;
}

/* Slides wrapper */
.gallery-slide {
  display: flex;
  gap: 18px;
  transition: transform .5s ease;
  padding: 10px;
}

/* Single gallery item */
.gallery-item {
  min-width: 200px;
  text-align: center;
}

/* image inside item */
.gallery-item img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* caption inside item */
.gallery-caption {
  margin-top: 6px;
  font-size: 14px;
  color: #333;
}

/* arrows */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 60, 0, .7);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav.prev { left: 5px; }
.gallery-nav.next { right: 5px; }

.gallery-nav:hover {
  background: rgba(0, 60, 0, .9);
}

/* Dots */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.gallery-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c0d9c0;
  cursor: pointer;
}

.gallery-dots .dot.active {
  background: #0c5c0c;
}

/* Fade animation */
.gallery-item img.fade-in {
  animation: galleryFade .45s ease;
}

@keyframes galleryFade {
  from { opacity: 0; transform: scale(1.03); }
  to   { opacity: 1; transform: scale(1); }
}

.logo-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden; /* important */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* OR cover if you want */
}

/* grid */
.service-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
  gap:28px;
  margin-top:25px;
}

/* box */
.service-card{
  background:#fff;
  border-radius:18px;
  border:1px solid #ddeedd;
  padding:35px 35px;
  transition:.3s;
}
.service-card:hover{
  transform:translateY(-5px);
  box-shadow:0 4px 12px rgba(0,0,0,.08);
}

/* icon */
.service-icon{
  font-size:48px;
  margin-bottom:5px;
}

/* heading */
.service-card h3{
  color:#0a3c0a;
  font-size:26px;
  margin:8px 0;
}

/* green tag */
.status{
  background:#0a3c0a;
  color:#fff;
  padding:6px 18px;
  border-radius:30px;
  font-size:15px;
  margin-bottom:14px;
  display:inline-block;
}

/* list */
.service-card ul{
  margin-top:10px;
  margin-bottom:18px;
}
.service-card ul li{
  margin-bottom:5px;
  line-height:1.4;
}

.process-grid4{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:25px;
  margin-top:25px;
}

.process-step{
  background:#fff;
  padding:25px;
  border-radius:12px;
  border:1px solid #dae9da;
}

.step-num{
  background:#0d510d;
  color:#fff;
  width:45px;
  height:45px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  margin:0 auto 12px;
}
/* ─── SERVICES ─────────────────────── */
.service-grid-3{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(400px,1fr));
  gap:32px;
  margin-top:25px;
}

.service-box{
  background:#fff;
  padding:35px;
  border-radius:18px;
  border:1px solid #dcecdc;
  transition:.3s;
  position:relative;
}

.service-box:hover{
  transform:translateY(-4px);
  box-shadow:0 4px 14px rgba(0,0,0,.10);
}

/* icon left */
.service-box h3{
  font-size:26px;
  color:#094509;
  margin-bottom:12px;
  display:flex;
  align-items:center;
  gap:12px;
}

/* status pill */
.service-status{
  background:#0a470a;
  color:#fff;
  padding:6px 18px;
  font-size:14px;
  border-radius:30px;
  display:inline-block;
  margin-left:12px;
}

/* list */
.service-box ul{
  margin:15px 0;
}
.service-box ul li{
  margin-bottom:6px;
}

/* bottom text */
.service-box p{
  margin-top:6px;
}
